home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 12-01.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  262b  |  15 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. DIM AuxCode AS STRING*1
  6. DIM KeyCode AS STRING*1
  7.  
  8. FGgetkey KeyCode, AuxCode
  9. WHILE KeyCode <> CHR$(27)
  10.    PRINT USING "Key = ###  Aux = ###"; ASC(KeyCode), ASC(AuxCode)
  11.    FGgetkey KeyCode, AuxCode
  12. WEND
  13.  
  14. END
  15.